    
    
  body {
    background-color:lightslategray; 
    background-image: url("Images/Hell Throne.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0; 
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    }
    
    .header {
        background-color: #333;
        color:#fff;
        padding: 5vh 5vw;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header span {
        font-size: 2.5rem;
        font-weight: 200;
    }

    #hambtn {
        display: inline-block;
        cursor: pointer;
        position: relative;
        z-index: 1101; 
    }

    #hambtn div{
        width: 3.5rem;
        height: 0.4rem;
        background-color: #fff;
        margin: 0.75rem 0;
        transition: 0.4s;
    }

    #menuOverlay {
        position:fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(51,51,51,0.95);
        z-index: 1100;
        text-align: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.25s ease;
        pointer-events: none;
    }

    #menuOverlay .close-btn {
        position: absolute;
        top: 1rem;
        right: 2rem;
        font-size: 2.5rem;
        cursor: pointer;
        color:white;
    }

    #menuOverlay .menu-links {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
    }

    #menuOverlay .menu-links a {
        color: aliceblue;
        font-size: 3rem;
        text-decoration: none;
        display: block;
        margin: 1rem;
        transition: all 0.3s;
    }

    #menuOverlay .menu-links a:hover {
        text-decoration: underline
    }

    .textbox {
        background: #fff;
        border-radius: 0.9rem;
        margin: 8rem auto;
        padding: 1.25rem;
        max-width: 100rem;
        box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,0.2)
    }


    .body {
        font-size: 0.8rem;
        font-family:Arial, Helvetica, sans-serif;

    }

    .footer {
        background-color: #b8b8b8; 
        color: #ffffff; 
        text-align:center; 
        padding:1rem; 
        position:fixed; 
        bottom:0; 
        left: 0; 
        width: 100%;
    }
